* Define Color Scheme */
:root {
    --primary-color: #0A3D62; /* Deep Blue */
    --accent-color: #F4C724;  /* Golden Yellow */
    --background-color: #F8F9FA; /* Light Gray */
    --text-color: #333333;    /* Dark Gray */
    --cta-color: #E74C3C;     /* Vibrant Red */
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background: linear-gradient(to right, #8360c3, #2ebf91);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header Styling */
header {
    background-color: #222; /* Dark background */
    color: var(--text-color); /* Use the defined text color */
    padding: 15px 20px;
}

/* Add this CSS rule to style the email link */
a {
    color: inherit; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove the underline */
}

a:hover {
    color: #F4C724; /* Change color on hover */
}

/* Example of specific styling for email links */
.email-link {
    color: var(--text-color); /* Use your desired color */
}

.email-link:hover {
    color: #F4C724; /* Change color on hover */
}

/* CTA Button Styles */
.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px; /* Add margin to lower the buttons */
}
  
/* Primary Button */
.cta-btn.primary {
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}
  
.cta-btn.primary:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 10px rgba(0, 123, 255, 0.3);
}
  
.cta-btn.primary:active {
    background-color: #00408a;
    transform: scale(0.98);
}
  
/* Secondary Button */
.cta-btn.secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(108, 117, 125, 0.2);
}
  
.cta-btn.secondary:hover {
    background-color: #545b62;
    box-shadow: 0 6px 10px rgba(108, 117, 125, 0.3);
}
  
.cta-btn.secondary:active {
    background-color: #3e444a;
    transform: scale(0.98);
}
  
/* Outlined Button */
.cta-btn.outlined {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}
  
.cta-btn.outlined:hover {
    background-color: #007bff;
    color: white;
}
  
.cta-btn.outlined:active {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: scale(0.98);
}

/* Hero Section */

.hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Ensures it fully covers the viewport */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.hero h2 {
    margin-bottom: 10px;
}

.hero p {
    margin-top: 10px;
    font-size: 24px;
}

.hero-content {
    margin-top: 20px; /* Add margin to lower the buttons */
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Keeps video in the background */
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    margin-top: 40px; /* Creates space below the hero section */
    z-index: 2; /* Ensures it's above the video */
}

.service {
    position: relative;
    background: #F8F9FA;
    padding: 15px;
    padding-left: 25px;
    padding-top: 25px;
    margin: 25px;
    border-radius: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service h2 {
    color: var(--primary-color);
    font-size: 24px;

}
.service h3 {
    color: var(--primary-color);
    font-size: 18px;
}
.service p {
    color: var(--text-color);
}

.services-container {
    text-align: center;
    padding: 60px 20px;
    font-size: 28;
}
.services-container p {
    font-size: 18px;
}

.service img {
    width: 100%;
    height: 200px; /* Set a fixed height */
    object-fit: contain; /* Ensure the image is not cropped */
    border-radius: 8px;
}

.services-grid .service:last-child {
    grid-column: span 2; /* Make the last service span two columns */
    justify-self: center; /* Center the last service */
}

.button-container {
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;      /* Centers vertically */
    margin: 20px auto;        /* Center the button horizontally */
}

#learn-more {
    display: inline-block;
}

/*trust testimonials*/
.trust-testimonials {
    padding: 50px 20px;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge img {
    width: 80px;
    height: auto;
}

.badge p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: #f8f9fa;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
}

.testimonial h4 {
    margin-top: 16px;
    font-weight: bold;
}
 /* logos section */
.logos {
    text-align: center;
    padding: 40px 20px;
    background-color: #F8F9FA;
}

.client-logos h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-container img {
    width: 150px; /* Adjust size */
    height: auto;
}

/* About & Contact Sections */
.contact {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
    color: #222;
}

.about {
    background: url('../assets/images/about-background.jpg') no-repeat center center/cover;
}

.contact-container {
    background-image: url("G:/AAA work/Website/Photos/contact-background.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: black;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content {
    max-width: 800px;
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.contact-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #f8b400;
}

/* Contact CTA */
.contact-actions {
    margin-top: 20px;
}

.contact-actions .cta {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    background-color: #f8b400;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.contact-actions .cta:hover {
    background-color: #d89c00;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    font-size: 16px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffcc00;
}

.footer-section p {
    margin: 5px 0;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #ffcc00;
}

.whatsapp img {
    width: 200px;  /* Adjust the size as needed */
    height: auto;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000; /* Keeps it above other elements */
}
/* Social Media Links */
.social-links a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffcc00;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero {
        height: 80vh;
        padding-top: 0;
        margin-top: 0;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero p {
        font-size: 12px;
    }

    .hero-video {
        height: 80vh;
        object-fit: contain;
        position: absolute;
        z-index: 1;
    }

    .cta-btn {
        padding: 4px 10px; /* Reduce button padding */
        font-size: 14px; /* Decrease font size */
    }

    /* Responsive Services Section */
    .services-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        padding: 0 15px; /* Add padding to the sides */
    }

    .service {
        margin: 15px auto; /* Adjust margin for mobile */
        padding: auto;
    }

    .services-grid .service:last-child {
        grid-column: span 1; /* Ensure last item doesn't span two columns */
    }

    .service img {
        height: auto; /* Adjust image height for mobile */
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        margin: 20px 0;
    }

    .whatsapp img {
        width: 100px;  /* Adjust the size as needed */
        height: auto;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000; /* Keeps it above other elements */
    }

}